home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / include / funcs / triton_funcs.h < prev    next >
C/C++ Source or Header  |  1996-09-10  |  2KB  |  50 lines

  1. #ifndef FUNCS_TRITON_FUNCS_H
  2. #define FUNCS_TRITON_FUNCS_H
  3.  
  4. /*
  5. **
  6. ** Function declarations for ACE Basic
  7. **
  8. ** Note: Translated to ACE by Nils Sjoholm
  9. **
  10. ** Date: 18-Oct-95
  11. **
  12. */       
  13.  
  14. #ifndef EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17.  
  18. DECLARE FUNCTION LONGINT TR_AutoRequest(STRUCTPTR app, STRUCTPTR project, \
  19.                                         STRUCTPTR taglist) LIBRARY triton
  20. DECLARE FUNCTION TR_CloseProject(STRUCTPTR project) LIBRARY triton
  21. DECLARE FUNCTION TR_CloseWindowSafely(STRUCTPTR win) LIBRARY triton
  22. DECLARE FUNCTION STRUCTPTR TR_CreateApp(STRUCTPTR taglist) LIBRARY triton
  23. DECLARE FUNCTION TR_DeleteApp(STRUCTPTR app) LIBRARY triton
  24. DECLARE FUNCTION LONGINT TR_EasyRequest(STRUCTPTR app, STRPTR BodyFmt, \
  25.                                         STRPTR GadFmt, STRUCTPTR taglist) LIBRARY triton
  26. DECLARE FUNCTION LONGINT TR_GetAttribute(STRUCTPTR project, LONGINT id, \
  27.                                          LONGINT attribute) LIBRARY triton
  28. DECLARE FUNCTION STRPTR TR_GetErrorString(SHORTINT number) LIBRARY triton
  29. DECLARE FUNCTION SHORTINT TR_GetLastError(STRUCTPTR app) LIBRARY triton
  30. DECLARE FUNCTION STRUCTPTR TR_GetMsg(STRUCTPTR app) LIBRARY triton
  31. DECLARE FUNCTION TR_LockProject(STRUCTPTR project) LIBRARY triton
  32. DECLARE FUNCTION STRUCTPTR TR_LockScreen(STRUCTPTR project) LIBRARY triton
  33. DECLARE FUNCTION STRUCTPTR TR_ObtainWindow(STRUCTPTR project) LIBRARY triton
  34. DECLARE FUNCTION STRUCTPTR TR_OpenProject(STRUCTPTR app, STRUCTPTR taglist) LIBRARY triton
  35. DECLARE FUNCTION TR_ReleaseWindow(STRUCTPTR win) LIBRARY triton
  36. DECLARE FUNCTION TR_ReplyMsg(STRUCTPTR msg) LIBRARY triton
  37. DECLARE FUNCTION TR_SetAttribute(STRUCTPTR project, LONGINT id, LONGINT attribute, \
  38.                                  LONGINT value) LIBRARY triton
  39. DECLARE FUNCTION TR_UnlockProject(STRUCTPTR project) LIBRARY triton
  40. DECLARE FUNCTION TR_UnlockScreen(STRUCTPTR scr) LIBRARY triton
  41. DECLARE FUNCTION LONGINT TR_Wait(STRUCTPTR app, LONGINT otherbits) LIBRARY triton
  42. DECLARE FUNCTION LONGINT TR_SendMessage(STRUCTPTR project, LONGINT objectid, \
  43.                                         LONGINT messageid, \
  44.                                         ADDRESS messagedata) LIBRARY triton
  45. DECLARE FUNCTION LONGINT TR_FirstOccurance(LONGINT ch, STRPTR str) LIBRARY triton
  46. DECLARE FUNCTION LONGINT TR_NumOccurances(LONGINT ch, STRPTR str) LIBRARY triton
  47.  
  48. #endif
  49.  
  50.